home *** CD-ROM | disk | FTP | other *** search
/ Omnia Junior - Base Terra / Omnia Junior - Base Terra [1998] [Windows].zip / Omnia Junior - Base Terra.iso / Crc95.exe / 0 / RCDATA / TPASSWORDDIALOG / TPASSWORDDIALOG.txt
Text File  |  2000-05-19  |  2KB  |  85 lines

  1. object PasswordDialog: TPasswordDialog
  2.   Left = 260
  3.   Top = 184
  4.   ActiveControl = Edit
  5.   BorderStyle = bsDialog
  6.   Caption = 'Enter password'
  7.   ClientHeight = 132
  8.   ClientWidth = 273
  9.   Font.Color = clBlack
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   PixelsPerInch = 96
  14.   Position = poScreenCenter
  15.   TextHeight = 13
  16.   object OKButton: TButton
  17.     Left = 109
  18.     Top = 98
  19.     Width = 75
  20.     Height = 25
  21.     Caption = '&OK'
  22.     Default = True
  23.     Enabled = False
  24.     ModalResult = 1
  25.     TabOrder = 1
  26.     OnClick = OKButtonClick
  27.   end
  28.   object CancelButton: TButton
  29.     Left = 190
  30.     Top = 98
  31.     Width = 75
  32.     Height = 25
  33.     Cancel = True
  34.     Caption = 'Cancel'
  35.     ModalResult = 2
  36.     TabOrder = 2
  37.   end
  38.   object GroupBox1: TGroupBox
  39.     Left = 8
  40.     Top = 8
  41.     Width = 257
  42.     Height = 81
  43.     Caption = 'Password'
  44.     TabOrder = 0
  45.     object Edit: TEdit
  46.       Left = 16
  47.       Top = 18
  48.       Width = 225
  49.       Height = 20
  50.       PasswordChar = '*'
  51.       TabOrder = 0
  52.       OnChange = EditChange
  53.     end
  54.     object AddButton: TButton
  55.       Left = 16
  56.       Top = 46
  57.       Width = 65
  58.       Height = 25
  59.       Caption = '&Add'
  60.       Enabled = False
  61.       TabOrder = 1
  62.       OnClick = AddButtonClick
  63.     end
  64.     object RemoveButton: TButton
  65.       Left = 88
  66.       Top = 46
  67.       Width = 65
  68.       Height = 25
  69.       Caption = '&Remove'
  70.       Enabled = False
  71.       TabOrder = 2
  72.       OnClick = RemoveButtonClick
  73.     end
  74.     object RemoveAllButton: TButton
  75.       Left = 160
  76.       Top = 46
  77.       Width = 81
  78.       Height = 25
  79.       Caption = 'Re&move all'
  80.       TabOrder = 3
  81.       OnClick = RemoveAllButtonClick
  82.     end
  83.   end
  84. end
  85.